* {
	margin: 0;
	padding: 0;
	font-size: 1em;
	text-decoration: none;
	border: none;
	list-style: none;
	outline: none;
}

/* @group skinny text */

/* http://orderedlist.com/articles/thining-text-in-safari-under-snow-leopard */
/* Only use this on pages with little copy, causes performance issues otherwise! */

body {
	-webkit-text-stroke: 1px transparent;
}

@media only screen and (max-device-width:480px) {
	body {
		-webkit-text-stroke: 0 black;
	}
}

/* @end */

html {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 10px solid #900;
	background-color: #c22;
}

body {
	color: #333;
	color: rgba(0, 0, 0, .75);
	font: 13px/20px "Helvetica Neue", Arial, sans-serif;
	text-shadow: #fff 0 1px 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -275px;
	width: 200px;
	height: 249px;
	padding: 49px 49px 0 299px;
	background: #eee;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, .9), rgba(211, 211, 211, .9));
	background: -webkit-gradient(linear,left top,left bottom,from(rgba(255, 255, 255, .9)),to(rgba(211, 211, 211, .9)));
	border: 1px solid #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-box-shadow: #600 0 2px 20px;
	-moz-box-shadow: #600 0 2px 10px;	
	-webkit-animation-name: pop;
	-webkit-animation-duration: .5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-in;
}

h1 {
	position: absolute;
	top: 49px;
	left: 49px;
	width: 200px;
	height: 201px;
	background: url(../img/logo.png) no-repeat 0 0;
	text-indent: 250px;
	overflow: hidden;
	white-space: nowrap;
}

strong {
	color: #c33;
}

#intro {
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
}

a {
	color: #39c;
	font-weight: bold;
	text-decoration: underline;
	text-shadow: rgba(255, 255, 255, .25) 0 1px 0;
}

a:hover,
a:focus {
	color: #069;
}

a:active {
	color: #036;
}

p {
	margin-bottom: 20px;
}

@-webkit-keyframes pop {
	from {
		-webkit-transform: scale(.1);
		opacity: 0;
	}
	85% {
		-webkit-transform: scale(1.05);
		opacity: 1;
	}
	to {
		-webkit-transform: scale(1);
	}
}